home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tclmotif.1 / tclmotif / tm.1.2 / doc / examples / callback.tcl < prev    next >
Encoding:
Text File  |  1994-01-24  |  325 b   |  21 lines

  1. #! moat
  2.  
  3. xtAppInitialize
  4.  
  5. xmPushButton .button managed \
  6.     -labelString "Push me" \
  7.     -marginHeight 30 -marginWidth 30
  8.  
  9. .button   armCallback {
  10.     puts "Button %widget armed."
  11. }
  12. .button activateCallback {
  13.     puts "Button %widget activated."
  14. }
  15. .button disarmCallback {
  16.     puts "Button %widget disarmed."
  17. }
  18.  
  19. . realizeWidget
  20. . mainLoop
  21.